home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ IE Filter PW 1.xpl
< prev
next >
Wrap
Text File
|
2003-11-19
|
1KB
|
44 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="5"
"COUNT"="1"
"UIPATH"="Internet\Internet Explorer\Troubleshooting"
"NAME"="Internet Filters"
"VERSION"="1.42"
"LANGUAGE"="VBScript"
"TEXT 1"="Delete Internet Filter Password"
"DESCRIPTION 1"="Click the button if you have set up filters inside Internet Explorer (Options - Contents) but can't remember the password."
"DESCRIPTION 2"="After the password has been deleted, restart IE and you can set up a new password."
"DESCRIPTION 3"="If IE asks you for a password, simply insert nothing - just press return."
"DESCRIPTION 4"="NOTE: This is for the Content Advisor feature in IE."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
Sub Plugin_Initialize
' Disable
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
i=ElementIndex
Select Case i
Case 1
s=RegReadValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Ratings\Key")
if IsEmpty(s)=false then
Call RegDeleteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Ratings\Key")
end if
Call MsgInformation("Password cleared")
end select
End Sub
Sub Plugin_Terminate
End Sub